home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6647 / 6647.xpi / chrome / httpfox.jar / content / HttpFoxWindow.xul < prev    next >
Extensible Markup Language  |  2009-04-04  |  1KB  |  32 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <?xul-overlay href="chrome://httpfox/content/HttpFoxOverlay.xul"?>
  4.  
  5. <?xml-stylesheet href="chrome://global/skin/global.css"?>
  6. <?xml-stylesheet href="chrome://HttpFox/skin/HttpFox.css"
  7.                  type="text/css"?>
  8.  
  9. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  10.         id="hf_Window"
  11.         title="HttpFox"
  12.         persist="screenX,screenY,width,height,sizemode"
  13.         onload="">
  14.  
  15.     <commandset id="mainCommandSet" />
  16.     
  17.     <!-- scripts start -->
  18.     <script type="application/x-javascript" src="chrome://httpfox/content/HttpFox.js"/>
  19.     <script type="application/x-javascript" src="chrome://httpfox/content/HttpFoxTree.js"/>
  20.     <script type="application/x-javascript" src="chrome://httpfox/content/Utils.js"/>
  21.     <!-- scripts end -->
  22.  
  23.     <vbox id="appcontent" flex="1"> <!-- overlay firefox content window -->
  24.         <vbox id="hf_PanelWindow" collapsed="false" persist="height" flex="1">
  25.             <vbox id="hf_RequestList" persist="height" flex="1" />
  26.  
  27.             <splitter id="hf_MiddleSplitter" persist="height"/>
  28.             
  29.             <vbox id="hf_RequestDetails" persist="height" flex="1" />
  30.         </vbox>
  31.     </vbox>
  32. </window>